home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / zendisk1 / lst8-6.asm < prev    next >
Encoding:
Assembly Source File  |  1990-02-15  |  235 b   |  17 lines

  1. ;
  2. ; *** Listing 8-6 ***
  3. ;
  4. ; Initializes a variable to 1 via the direct-addressing
  5. ; mod-reg-rm form of MOV.
  6. ;
  7.     jmp    Skip
  8. ;
  9. InitialValue    dw    ?
  10. ;
  11. Skip:
  12.     call    ZTimerOn
  13.     rept    1000
  14.     mov    [InitialValue],1
  15.     endm
  16.     call    ZTimerOff
  17.